home *** CD-ROM | disk | FTP | other *** search
/ Gamers Delight 2 / Gamers Delight 2.iso / Aminet / game / gag / walkingman.lha / WalkingMan / Sources / Extern.h next >
C/C++ Source or Header  |  1992-08-04  |  476b  |  33 lines

  1. /* JPK13.04.92-14.04.92 */
  2.  
  3. #ifndef EXTERN_H
  4. #define EXTERN_H
  5.  
  6. struct Flags {
  7.     unsigned quit:        1;
  8.     unsigned finale:    1;
  9.     unsigned error:    1;
  10.     };
  11.  
  12. extern struct IntuitionBase *IntuitionBase;
  13. extern struct GfxBase *GfxBase;
  14.  
  15. extern struct Window *MyWindow;
  16. extern struct NewWindow MyNewWindow;
  17. extern struct Menu MyMenu;
  18. extern struct MenuItem
  19.     NeuItem, AltItem, HaltItem, QuitItem;
  20.  
  21. extern struct Flags Flags;
  22.  
  23.  
  24. char
  25.     StartUp(),
  26.     Fehler();
  27. void
  28.     CleanUp(),
  29.     frequenz();
  30.  
  31. #endif
  32.  
  33.